// Create a calendar and set it to October 7, 1767 at 09:00 and reset it.
void main()
{
calendar test;
test.set(1767, 10, 7, 9, 0, 0);
test.reset();
alert("Date", "The date is "+test.weekday_name+", "+test.month_name+" "+test.day+", "+test.year+", at "+test.hour+":"+test.minute+":"+test.second);
}